0b66beeef199943d5860ce8a05ebf8e4959922ce,bobas.businessobjectscommon/src/main/java/org/colorcoding/ibas/bobas/logics/BusinessLogic.java,BusinessLogic,fetchExistingParent,#,208
Before Change
if (opRslt.getResultCode() != 0) {
throw new Exception(opRslt.getMessage());
}
return (IBusinessObjectBase) opRslt.getResultObjects().firstOrDefault();
}
throw new BusinessLogicsException(i18n.prop("msg_bobas_not_supported"));
} catch (Exception e) {
After Change
if (opRslt.getResultCode() != 0) {
throw new Exception(opRslt.getMessage());
}
return opRslt.getResultObjects().firstOrDefault();
}
throw new BusinessLogicsException(i18n.prop("msg_bobas_not_supported"));
} catch (Exception e) {